#include "..\CookHeader.h"

Array <string> stack = { "None", "None", "None", "None", "None" };
int top = -1;

int main() {
	top++;
	stack[top] = "Ŀ";
	top++;
	stack[top] = "";
	top++;
	stack[top] = "ܹ";

	println("-------   -------");
	for (int i = len(stack)-1; i > -1; i--) 
		println(stack[i]);
}